<!DOCTYPE html>

<html lang="ru">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Вебинар: Обучение в Дубае</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            margin: 0;

            padding: 0;

            background-color: #f8f1e4;

            color: #333;

        }

        .header {

            background: url('https://source.unsplash.com/1600x900/?dubai,architecture') no-repeat center center/cover;

            height: 60vh;

            display: flex;

            align-items: center;

            justify-content: center;

            color: white;

            text-align: center;

            font-size: 2em;

            font-weight: bold;

            padding: 20px;

        }

        .container {

            max-width: 900px;

            margin: auto;

            padding: 20px;

            text-align: center;

        }

        .cta-button {

            display: inline-block;

            padding: 15px 30px;

            background-color: #d4af37;

            color: white;

            font-size: 1.2em;

            text-decoration: none;

            border-radius: 5px;

            margin-top: 20px;

        }

        .cta-button:hover {

            background-color: #b8962e;

        }

        .footer {

            text-align: center;

            padding: 20px;

            background-color: #333;

            color: white;

            margin-top: 30px;

        }

    </style>

</head>

<body>

    <div class="header">

        Вебинар: Как поступить в университет в Дубае

    </div>

    <div class="container">

        <h2>Мечтаете о международном образовании в сердце Востока?</h2>

        <p>Присоединяйтесь к бесплатному вебинару и узнайте, как поступить в ведущие университеты Дубая. </p>

        <p><strong>Дата:</strong> 10 февраля 2025 года</p>

        <p><strong>Формат:</strong> Онлайн</p>

        <a href="#register" class="cta-button">Зарегистрироваться</a>

    </div>

    <div id="register" class="container">

        <h2>Регистрация на вебинар</h2>

        <form>

            <input type="text" placeholder="Ваше имя" required><br><br>

            <input type="email" placeholder="Ваш email" required><br><br>

            <button type="submit" class="cta-button">Отправить</button>

        </form>

    </div>

    <div class="footer">

        &copy; 2025 Международное образование | Все права защищены

    </div>

</body>

</html>